crypto/tls.Conn.handshakeErr (field)
21 uses
crypto/tls (current package)
conn.go#L40: handshakeErr error // error resulting from handshake
conn.go#L1275: if c.handshakeErr = c.clientHandshake(context.Background()); c.handshakeErr == nil {
conn.go#L1278: return c.handshakeErr
conn.go#L1542: if err := c.handshakeErr; err != nil {
conn.go#L1552: c.handshakeErr = c.handshakeFn(handshakeCtx)
conn.go#L1553: if c.handshakeErr == nil {
conn.go#L1561: if c.handshakeErr == nil && !c.isHandshakeComplete.Load() {
conn.go#L1562: c.handshakeErr = errors.New("tls: internal error: handshake should have had a result")
conn.go#L1564: if c.handshakeErr != nil && c.isHandshakeComplete.Load() {
conn.go#L1569: if c.handshakeErr == nil {
conn.go#L1586: c.handshakeErr = fmt.Errorf("%w%.0w", c.handshakeErr, AlertError(a))
conn.go#L1592: return c.handshakeErr
quic.go#L179: return q.conn.handshakeErr
quic.go#L213: return q.conn.handshakeErr
quic.go#L235: for q.conn.hand.Len() >= 4 && q.conn.handshakeErr == nil {
quic.go#L239: q.conn.handshakeErr = fmt.Errorf("tls: handshake message of length %d bytes exceeds maximum of %d bytes", n, maxHandshake)
quic.go#L246: q.conn.handshakeErr = err
quic.go#L249: if q.conn.handshakeErr != nil {
quic.go#L250: return quicError(q.conn.handshakeErr)
|
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |